projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5afe3a2
)
(get_lim_data): Handle NO_LIM_DATA.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 21 Apr 1994 18:53:38 +0000
(18:53 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 21 Apr 1994 18:53:38 +0000
(18:53 +0000)
src/mem-limits.h
patch
|
blob
|
history
diff --git
a/src/mem-limits.h
b/src/mem-limits.h
index 65384ba3c949e3d20c5be4da9848b19cc5d3803a..08743d533fc804baf4383142dfd44da1da99edd3 100644
(file)
--- a/
src/mem-limits.h
+++ b/
src/mem-limits.h
@@
-98,6
+98,14
@@
static POINTER data_space_start;
/* Number of bytes of writable memory we can expect to be able to get */
static unsigned int lim_data;
+#ifdef NO_LIM_DATA
+static void
+get_lim_data ()
+{
+ lim_data = -1;
+}
+#else /* not NO_LIM_DATA */
+
#ifdef USG
static void
@@
-157,3
+165,4
@@
get_lim_data ()
}
#endif /* BSD4_2 */
#endif /* not USG */
+#endif /* not NO_LIM_DATA */